See https://developer.gnome.org/hig/stable/typography.html
https://bugzilla.gnome.org/show_bug.cgi?id=772371
g_task_set_source_tag (task, gdk_content_provider_real_write_mime_type_async);
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
- _("Cannot provide contents as \"%s\""), mime_type);
+ _("Cannot provide contents as “%s”"), mime_type);
g_object_unref (task);
}
if (mime_type != content->mime_type)
{
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
- _("Cannot provide contents as \"%s\""), mime_type);
+ _("Cannot provide contents as “%s”"), mime_type);
g_object_unref (task);
return;
}
else
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
- _("Unsupported encoding \"%s\""), conv->encoding);
+ _("Unsupported encoding “%s”"), conv->encoding);
return G_CONVERTER_ERROR;
}